home *** CD-ROM | disk | FTP | other *** search
/ Over 1,000 Windows 95 Programs / Over 1000 Windows 95 Programs (Microforum) (Disc 1).iso / 0957 / gnugrep / cl / grep.mak < prev    next >
Text File  |  1996-06-28  |  9KB  |  310 lines

  1. # Microsoft Developer Studio Generated NMAKE File, Format Version 4.10
  2. # ** DO NOT EDIT **
  3.  
  4. # TARGTYPE "Win32 (x86) Console Application" 0x0103
  5.  
  6. !IF "$(CFG)" == ""
  7. CFG=Grep - Win32 Debug
  8. !MESSAGE No configuration specified.  Defaulting to Grep - Win32 Debug.
  9. !ENDIF 
  10.  
  11. !IF "$(CFG)" != "Grep - Win32 Release" && "$(CFG)" != "Grep - Win32 Debug"
  12. !MESSAGE Invalid configuration "$(CFG)" specified.
  13. !MESSAGE You can specify a configuration when running NMAKE on this makefile
  14. !MESSAGE by defining the macro CFG on the command line.  For example:
  15. !MESSAGE 
  16. !MESSAGE NMAKE /f "Grep.mak" CFG="Grep - Win32 Debug"
  17. !MESSAGE 
  18. !MESSAGE Possible choices for configuration are:
  19. !MESSAGE 
  20. !MESSAGE "Grep - Win32 Release" (based on "Win32 (x86) Console Application")
  21. !MESSAGE "Grep - Win32 Debug" (based on "Win32 (x86) Console Application")
  22. !MESSAGE 
  23. !ERROR An invalid configuration is specified.
  24. !ENDIF 
  25.  
  26. !IF "$(OS)" == "Windows_NT"
  27. NULL=
  28. !ELSE 
  29. NULL=nul
  30. !ENDIF 
  31. ################################################################################
  32. # Begin Project
  33. # PROP Target_Last_Scanned "Grep - Win32 Debug"
  34. CPP=cl.exe
  35. RSC=rc.exe
  36.  
  37. !IF  "$(CFG)" == "Grep - Win32 Release"
  38.  
  39. # PROP BASE Use_MFC 0
  40. # PROP BASE Use_Debug_Libraries 0
  41. # PROP BASE Output_Dir "Release"
  42. # PROP BASE Intermediate_Dir "Release"
  43. # PROP BASE Target_Dir ""
  44. # PROP Use_MFC 0
  45. # PROP Use_Debug_Libraries 0
  46. # PROP Output_Dir "Release"
  47. # PROP Intermediate_Dir "Release"
  48. # PROP Target_Dir ""
  49. OUTDIR=.\Release
  50. INTDIR=.\Release
  51.  
  52. ALL : "$(OUTDIR)\Grep.exe"
  53.  
  54. CLEAN : 
  55.     -@erase "$(INTDIR)\dfa.obj"
  56.     -@erase "$(INTDIR)\getopt.obj"
  57.     -@erase "$(INTDIR)\grep.obj"
  58.     -@erase "$(INTDIR)\kwset.obj"
  59.     -@erase "$(INTDIR)\obstack.obj"
  60.     -@erase "$(INTDIR)\regex.obj"
  61.     -@erase "$(INTDIR)\search.obj"
  62.     -@erase "$(OUTDIR)\Grep.exe"
  63.  
  64. "$(OUTDIR)" :
  65.     if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
  66.  
  67. # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /YX /c
  68. # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /YX /c
  69. CPP_PROJ=/nologo /ML /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE"\
  70.  /Fp"$(INTDIR)/Grep.pch" /YX /Fo"$(INTDIR)/" /c 
  71. CPP_OBJS=.\Release/
  72. CPP_SBRS=.\.
  73. # ADD BASE RSC /l 0x409 /d "NDEBUG"
  74. # ADD RSC /l 0x409 /d "NDEBUG"
  75. BSC32=bscmake.exe
  76. # ADD BASE BSC32 /nologo
  77. # ADD BSC32 /nologo
  78. BSC32_FLAGS=/nologo /o"$(OUTDIR)/Grep.bsc" 
  79. BSC32_SBRS= \
  80.     
  81. LINK32=link.exe
  82. # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
  83. # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
  84. LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
  85.  advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\
  86.  odbccp32.lib /nologo /subsystem:console /incremental:no\
  87.  /pdb:"$(OUTDIR)/Grep.pdb" /machine:I386 /out:"$(OUTDIR)/Grep.exe" 
  88. LINK32_OBJS= \
  89.     "$(INTDIR)\dfa.obj" \
  90.     "$(INTDIR)\getopt.obj" \
  91.     "$(INTDIR)\grep.obj" \
  92.     "$(INTDIR)\kwset.obj" \
  93.     "$(INTDIR)\obstack.obj" \
  94.     "$(INTDIR)\regex.obj" \
  95.     "$(INTDIR)\search.obj"
  96.  
  97. "$(OUTDIR)\Grep.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
  98.     $(LINK32) @<<
  99.   $(LINK32_FLAGS) $(LINK32_OBJS)
  100. <<
  101.  
  102. !ELSEIF  "$(CFG)" == "Grep - Win32 Debug"
  103.  
  104. # PROP BASE Use_MFC 0
  105. # PROP BASE Use_Debug_Libraries 1
  106. # PROP BASE Output_Dir "Debug"
  107. # PROP BASE Intermediate_Dir "Debug"
  108. # PROP BASE Target_Dir ""
  109. # PROP Use_MFC 0
  110. # PROP Use_Debug_Libraries 1
  111. # PROP Output_Dir "Debug"
  112. # PROP Intermediate_Dir "Debug"
  113. # PROP Target_Dir ""
  114. OUTDIR=.\Debug
  115. INTDIR=.\Debug
  116.  
  117. ALL : "$(OUTDIR)\Grep.exe"
  118.  
  119. CLEAN : 
  120.     -@erase "$(INTDIR)\dfa.obj"
  121.     -@erase "$(INTDIR)\getopt.obj"
  122.     -@erase "$(INTDIR)\grep.obj"
  123.     -@erase "$(INTDIR)\kwset.obj"
  124.     -@erase "$(INTDIR)\obstack.obj"
  125.     -@erase "$(INTDIR)\regex.obj"
  126.     -@erase "$(INTDIR)\search.obj"
  127.     -@erase "$(INTDIR)\vc40.idb"
  128.     -@erase "$(INTDIR)\vc40.pdb"
  129.     -@erase "$(OUTDIR)\Grep.exe"
  130.     -@erase "$(OUTDIR)\Grep.ilk"
  131.     -@erase "$(OUTDIR)\Grep.pdb"
  132.  
  133. "$(OUTDIR)" :
  134.     if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
  135.  
  136. # ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /YX /c
  137. # ADD CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /YX /c
  138. CPP_PROJ=/nologo /MLd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE"\
  139.  /Fp"$(INTDIR)/Grep.pch" /YX /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c 
  140. CPP_OBJS=.\Debug/
  141. CPP_SBRS=.\.
  142. # ADD BASE RSC /l 0x409 /d "_DEBUG"
  143. # ADD RSC /l 0x409 /d "_DEBUG"
  144. BSC32=bscmake.exe
  145. # ADD BASE BSC32 /nologo
  146. # ADD BSC32 /nologo
  147. BSC32_FLAGS=/nologo /o"$(OUTDIR)/Grep.bsc" 
  148. BSC32_SBRS= \
  149.     
  150. LINK32=link.exe
  151. # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386
  152. # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386
  153. LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
  154.  advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\
  155.  odbccp32.lib /nologo /subsystem:console /incremental:yes\
  156.  /pdb:"$(OUTDIR)/Grep.pdb" /debug /machine:I386 /out:"$(OUTDIR)/Grep.exe" 
  157. LINK32_OBJS= \
  158.     "$(INTDIR)\dfa.obj" \
  159.     "$(INTDIR)\getopt.obj" \
  160.     "$(INTDIR)\grep.obj" \
  161.     "$(INTDIR)\kwset.obj" \
  162.     "$(INTDIR)\obstack.obj" \
  163.     "$(INTDIR)\regex.obj" \
  164.     "$(INTDIR)\search.obj"
  165.  
  166. "$(OUTDIR)\Grep.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
  167.     $(LINK32) @<<
  168.   $(LINK32_FLAGS) $(LINK32_OBJS)
  169. <<
  170.  
  171. !ENDIF 
  172.  
  173. .c{$(CPP_OBJS)}.obj:
  174.    $(CPP) $(CPP_PROJ) $<  
  175.  
  176. .cpp{$(CPP_OBJS)}.obj:
  177.    $(CPP) $(CPP_PROJ) $<  
  178.  
  179. .cxx{$(CPP_OBJS)}.obj:
  180.    $(CPP) $(CPP_PROJ) $<  
  181.  
  182. .c{$(CPP_SBRS)}.sbr:
  183.    $(CPP) $(CPP_PROJ) $<  
  184.  
  185. .cpp{$(CPP_SBRS)}.sbr:
  186.    $(CPP) $(CPP_PROJ) $<  
  187.  
  188. .cxx{$(CPP_SBRS)}.sbr:
  189.    $(CPP) $(CPP_PROJ) $<  
  190.  
  191. ################################################################################
  192. # Begin Target
  193.  
  194. # Name "Grep - Win32 Release"
  195. # Name "Grep - Win32 Debug"
  196.  
  197. !IF  "$(CFG)" == "Grep - Win32 Release"
  198.  
  199. !ELSEIF  "$(CFG)" == "Grep - Win32 Debug"
  200.  
  201. !ENDIF 
  202.  
  203. ################################################################################
  204. # Begin Source File
  205.  
  206. SOURCE=.\search.c
  207. DEP_CPP_SEARC=\
  208.     ".\dfa.h"\
  209.     ".\grep.h"\
  210.     ".\kwset.h"\
  211.     ".\regex.h"\
  212.     {$(INCLUDE)}"\sys\types.h"\
  213.     
  214.  
  215. "$(INTDIR)\search.obj" : $(SOURCE) $(DEP_CPP_SEARC) "$(INTDIR)"
  216.  
  217.  
  218. # End Source File
  219. ################################################################################
  220. # Begin Source File
  221.  
  222. SOURCE=.\dfa.c
  223. DEP_CPP_DFA_C=\
  224.     ".\dfa.h"\
  225.     ".\regex.h"\
  226.     
  227.  
  228. "$(INTDIR)\dfa.obj" : $(SOURCE) $(DEP_CPP_DFA_C) "$(INTDIR)"
  229.  
  230.  
  231. # End Source File
  232. ################################################################################
  233. # Begin Source File
  234.  
  235. SOURCE=.\getopt.c
  236. DEP_CPP_GETOP=\
  237.     ".\getopt.h"\
  238.     
  239. NODEP_CPP_GETOP=\
  240.     ".\config.h"\
  241.     
  242.  
  243. "$(INTDIR)\getopt.obj" : $(SOURCE) $(DEP_CPP_GETOP) "$(INTDIR)"
  244.  
  245.  
  246. # End Source File
  247. ################################################################################
  248. # Begin Source File
  249.  
  250. SOURCE=.\grep.c
  251. DEP_CPP_GREP_=\
  252.     ".\getopt.h"\
  253.     ".\grep.h"\
  254.     {$(INCLUDE)}"\sys\stat.h"\
  255.     {$(INCLUDE)}"\sys\types.h"\
  256.     
  257.  
  258. "$(INTDIR)\grep.obj" : $(SOURCE) $(DEP_CPP_GREP_) "$(INTDIR)"
  259.  
  260.  
  261. # End Source File
  262. ################################################################################
  263. # Begin Source File
  264.  
  265. SOURCE=.\kwset.c
  266. DEP_CPP_KWSET=\
  267.     ".\kwset.h"\
  268.     ".\obstack.h"\
  269.     {$(INCLUDE)}"\sys\types.h"\
  270.     
  271. NODEP_CPP_KWSET=\
  272.     ".\gstddef.h"\
  273.     
  274.  
  275. "$(INTDIR)\kwset.obj" : $(SOURCE) $(DEP_CPP_KWSET) "$(INTDIR)"
  276.  
  277.  
  278. # End Source File
  279. ################################################################################
  280. # Begin Source File
  281.  
  282. SOURCE=.\regex.c
  283. DEP_CPP_REGEX=\
  284.     ".\regex.h"\
  285.     {$(INCLUDE)}"\sys\types.h"\
  286.     
  287.  
  288. "$(INTDIR)\regex.obj" : $(SOURCE) $(DEP_CPP_REGEX) "$(INTDIR)"
  289.  
  290.  
  291. # End Source File
  292. ################################################################################
  293. # Begin Source File
  294.  
  295. SOURCE=.\obstack.c
  296. DEP_CPP_OBSTA=\
  297.     ".\obstack.h"\
  298.     
  299. NODEP_CPP_OBSTA=\
  300.     ".\gstddef.h"\
  301.     
  302.  
  303. "$(INTDIR)\obstack.obj" : $(SOURCE) $(DEP_CPP_OBSTA) "$(INTDIR)"
  304.  
  305.  
  306. # End Source File
  307. # End Target
  308. # End Project
  309. ################################################################################
  310.